home *** CD-ROM | disk | FTP | other *** search
/ TEKNO 1996 March / TEKNO 3-1996.iso / DISKET / SPILL / 03-96.BAT next >
DOS Batch File  |  1996-02-29  |  1KB  |  61 lines

  1. @echo off
  2. goto start
  3.  
  4. :menu
  5. window,FCYA,Bblu,TWHI,Ocya,HRED,E,kcya─┴───┬,m2,a,s,x,~
  6. title,Hvilken diskett? 
  7.  header,GIGA NUMMER 03-96
  8.  h_format,Bblu,fWHI,t,d4
  9.  f_format,Bblu,fWHI
  10.   option,SPILLDISKETT,1
  11.   option,NYTTEDISKETT,1
  12.   option,VEDLEGGSDISKETT,1
  13.   option,Tilbake til forrige meny,13
  14. :end_menu
  15.  
  16. :start
  17. batmnu \giga96\03-96\03-96.bat
  18. if errorlevel 4 goto exit
  19. if errorlevel 3 goto vedlegg
  20. if errorlevel 2 goto nytte
  21. if errorlevel 1 goto spill
  22. if errorlevel 0 goto exit
  23. goto start
  24.  
  25. :nytte
  26. if exist \giga96\03-96\nytte\n3-96.bat goto nytteok
  27. cls
  28. echo Denne disketten er ikke installert.
  29. echo Trykk en tast...
  30. pause>nul:
  31. goto start
  32. :nytteok
  33. call \giga96\03-96\nytte\n3-96.bat
  34. goto start
  35.  
  36. :spill
  37. if exist \giga96\03-96\spill\S3-96.bat goto spillok
  38. cls
  39. echo Denne disketten er ikke installert.
  40. echo Trykk en tast...
  41. pause>nul:
  42. goto start
  43. :spillok
  44. call \giga96\03-96\spill\S3-96.bat
  45. goto start
  46.  
  47. :vedlegg
  48. if exist \giga96\03-96\vedlegg\v3-96.bat goto vedleggok
  49. cls
  50. echo Denne disketten er ikke installert.
  51. echo Trykk en tast...
  52. pause>nul:
  53. goto start
  54. :vedleggok
  55. call \giga96\03-96\vedlegg\v3-96.bat
  56. goto start
  57.  
  58.  
  59. :exit
  60.  
  61.